home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Online / Epic4 / share / epic / help / 5_programming / on / note < prev    next >
Encoding:
Text File  |  2001-03-21  |  439 b   |  21 lines

  1. Synopsis:
  2.    on [<modes>]note [<serial#>] [-|^]<match> { <action> }
  3.  
  4. Description:
  5.    This hook is triggered whenever the client receives a NOTE.
  6.  
  7. Parameters:
  8.    $0    nickname of message sender
  9.    $1    time the message was send (accurate +/- 60 seconds)
  10.    $2-   text of message
  11.  
  12. Examples:
  13.    To customize the display of irc NOTEs:
  14.       on ^note "*" {
  15.          echo V%$0%V $2- \($1\)
  16.       }
  17.  
  18. See Also:
  19.    note(4)
  20.  
  21.